To be able to edit code and run cells, you need to run the notebook yourself. Where would you like to run the notebook?

This notebook takes about 20 seconds to run.

In the cloud (experimental)

Binder is a free, open source service that runs scientific notebooks in the cloud! It will take a while, usually 2-7 minutes to get a session.

On your computer

(Recommended if you want to store your changes.)

  1. Copy the notebook URL:
  2. Run Pluto

    (Also see: How to install Julia and Pluto)

  3. Paste URL in the Open box

Frontmatter

If you are publishing this notebook on the web, you can set the parameters below to provide HTML metadata. This is useful for search engines and social media.

Author 1
👀 Reading hidden code
import Pkg
182 μs
Error message

Multiple expressions in one cell.

How would you like to fix it?

👀 Reading hidden code
howmany = @coolbind(Counter(124)) + @coolbind(Counter(135))
howmany = @coolbind(Counter(124)) + @coolbind(Counter(134))
howmany = @coolbind(Counter(124)) + @coolbind(Counter(134))
howmany = @coolbind(Counter(124)) + @coolbind(Counter(134))
howmany = @coolbind(Counter(124)) + @coolbind(Counter(134))
howmany = @coolbind(Counter(124)) + @coolbind(Counter(134))
howmany = @coolbind(Counter(124)) + @coolbind(Counter(134))

---
👀 Reading hidden code
x = @coolbind(Splitter(["fonsi", "\"\"\\asd", "fasd", "f"] ; potato = 123))#==#
5.7 ms
45
👀 Reading hidden code
xx = @coolbind(Slider( 45 ; show_value=false))
5.9 ms
45
👀 Reading hidden code
9.1 μs
@coolbind (macro with 1 method)
👀 Reading hidden code
macro coolbind(ex)
esc(ex)
end
422 μs
Slider (generic function with 2 methods)
begin
Slider(; start=0., stop=1.0, kwargs...) = start
Slider(value; start=0., stop=1.0, kwargs...) = value
end
👀 Reading hidden code
2.7 ms
2
1 + 1
👀 Reading hidden code
11.6 μs
Splitter (generic function with 1 method)
Splitter(splits; kwargsadfsdfaz...) = splits
👀 Reading hidden code
1.1 ms
Counter (generic function with 1 method)
Counter(splits; kwargsadfsdfaz...) = splits
👀 Reading hidden code
1.2 ms
# begin
# PlutoRunner._inline_widgets_changed[] = true
# PlutoRunner._inline_widgets |> empty!
# end
👀 Reading hidden code
14.8 μs
Error message

UndefVarError: register_inline_widget not defined

Stack trace

Here is what happened, the most recent locations are first:

  1. getproperty
    from Base.jl:35
  2. PlutoRunner.register_inline_widget(:Slider, """	console.log("PROPS ", props)
¯\_(ツ)_/¯
PlutoRunner.register_inline_widget(:Slider, """
console.log("PROPS ", props)
const container = document.createElement("span")
const el = document.createElement("input")
const value = document.createElement("span")
el.type = "range"
el.valueAsNumber = getState()
el.addEventListener("input", () => {
setState(el.valueAsNumber)
value.innerText = el.valueAsNumber
})
container.appendChild(el)
if (props.show_value) {
value.innerText = getState()
container.appendChild(value)
}
return container
""")
👀 Reading hidden code
---
Error message

UndefVarError: register_inline_widget not defined

Stack trace

Here is what happened, the most recent locations are first:

  1. getproperty
    from Base.jl:35
  2. PlutoRunner.register_inline_widget(:Splitter, """	const el = document.createElement("input")
PlutoRunner.register_inline_widget(:Splitter, """
const el = document.createElement("input")
el.value = (getState() ?? []).join(" ")
el.addEventListener("input", () => {
setState(el.value.split(" "))
})
const span = document.createElement("span")
span.appendChild(el)
return span
""")
👀 Reading hidden code
---
Error message

UndefVarError: register_inline_widget not defined

Stack trace

Here is what happened, the most recent locations are first:

  1. getproperty
    from Base.jl:35
  2. PlutoRunner.register_inline_widget(:Counter, """
¯\_(ツ)_/¯
PlutoRunner.register_inline_widget(:Counter, """

const dec = html`<button>-</button>`
const inc = html`<button>+</button>`

const counter = html`<span></span>`

counter.innerText = getState()

dec.onclick = async () => {
await setState(getState() - 1)
counter.innerText = getState()
}
inc.onclick = () => {
setState(getState() + 1)
counter.innerText = getState()
}
return html`\${dec}\${counter}\${inc}`
""")
👀 Reading hidden code
---
Error message

syntax: extra token "world" after end of expression

hello world
👀 Reading hidden code
---
["hello", "world"]
👀 Reading hidden code
18.1 μs
@bind s html"<input value='Slider(x; start=1, stop=[2,3])'>"
👀 Reading hidden code
237 ms
Error message

MethodError: no method matching parse(::Missing)

Closest candidates are:

parse(::AbstractString; raise, depwarn) at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/base/meta.jl:267

parse(::AbstractString, ::Integer; greedy, raise, depwarn) at /opt/hostedtoolcache/julia/1.7.3/x64/share/julia/base/meta.jl:233

Stack trace

Here is what happened, the most recent locations are first:

  1. e = Meta.parse(s)
C'est la vie !
e = Meta.parse(s)
👀 Reading hidden code
---
Error message

Another cell defining e contains errors.

C'est la vie !
begin
params = e.args[2]

new_ex = Expr(:call, :Dict, map(kw -> Expr(:call, :(=>), QuoteNode(kw.args[1]), kw.args[2]), params.args)...)
end
👀 Reading hidden code
---
Error message

Another cell defining e contains errors.

eval(new_ex)
👀 Reading hidden code
---
Error message

Another cell defining e contains errors.

if Meta.isexpr(e.args[2], :parameters)
e.args[3]
else
e.args[2]
end
👀 Reading hidden code
---
@mymacro (macro with 1 method)
macro mymacro(df_expression)
A1 = df[:A, :1]
end
👀 Reading hidden code
485 μs
f (generic function with 1 method)
function f()

end
👀 Reading hidden code
354 μs
1
Slider(1; functions=[f, sin, exp])
👀 Reading hidden code
27.8 ms
:(Slider(1))
Meta.parse("Slider(1)")
👀 Reading hidden code
128 μs
100
y = 100
👀 Reading hidden code
11.7 μs
Error message

UndefVarError: @c00lbind not defined

Stack trace

Here is what happened, the most recent locations are first:

  1. from :0
  2. #macroexpand#51
  3. macroexpand
@c00lbind(Slider(; start=y, stop=y+10))
👀 Reading hidden code
---
# x =
👀 Reading hidden code
16.1 μs
# @coolbind(NotASlider())
👀 Reading hidden code
14.4 μs